projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c5eeaf5
)
(put_entries): For NODE->rewritten, put pattern before \177 and name after,
author
Roland McGrath
<roland@gnu.org>
Sun, 1 Aug 1993 22:13:54 +0000
(22:13 +0000)
committer
Roland McGrath
<roland@gnu.org>
Sun, 1 Aug 1993 22:13:54 +0000
(22:13 +0000)
not vice versa.
lib-src/etags.c
patch
|
blob
|
history
diff --git
a/lib-src/etags.c
b/lib-src/etags.c
index f27ca983b8b3404bbf0d1c425db66633c7da4cbb..b78a3f8d277a59d8d5dbcb9def2b0de33371d33d 100644
(file)
--- a/
lib-src/etags.c
+++ b/
lib-src/etags.c
@@
-1175,12
+1175,14
@@
put_entries (node)
if (node->rewritten)
{
fprintf (outf, "%s\177%s\001%d,%d\n",
- node->name, node->pat, node->lno, node->cno);
+ node->pat, node->name,
+ node->lno, node->cno);
}
else
{
fprintf (outf, "%s\177%d,%d\n",
- node->pat, node->lno, node->cno);
+ node->pat,
+ node->lno, node->cno);
}
}
else if (!cxref_style)